|
.NET Framework | |||||||||
PREV TYPE NEXT TYPE | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONST | PROP | METHOD | OP | EVENT | DETAIL: FIELD | CONST | PROP | METHOD | OP | EVENT |
Field Summary | |
---|---|
Naanou.Common.Deque.DLNode | head |
int | size |
Naanou.Common.Deque.DLNode | tail |
Constructor Summary | |
---|---|
Deque() Constructor |
Property Summary | |
---|---|
int | Count |
object |
First
Gets or sets the first (header) value |
Naanou.Common.Deque.DLNode | Head |
bool |
IsEmpty
Gets whether que is empty |
object |
Last
Gets or sets the last (tail) value |
Naanou.Common.Deque.DLNode | Tail |
Method Summary | |
---|---|
Naanou.Common.Deque.DequeEnumerator | GetBackwardEnumerator() |
Naanou.Common.Deque.DequeEnumerator |
GetForwardEnumerator() Gets enumerator |
System.Collections.IEnumerator |
IEnumerable.GetEnumerator() Gets enumerator (from tail to head) |
void | InsertFirst(object elem) |
void | InsertLast(object elem) |
object | RemoveFirst() |
object | RemoveLast() |
Methods inherited from class System.Object |
---|
Equals, Finalize, GetHashCode, GetType, MemberwiseClone, ToString |
Field Detail |
---|
private Naanou.Common.Deque.DLNode head
private int size
private Naanou.Common.Deque.DLNode tail
Constructor Detail |
---|
public Deque()
Constructor
Property Detail |
---|
public int Count
public object First
Gets or sets the first (header) value
internal Naanou.Common.Deque.DLNode Head
public bool IsEmpty
Gets whether que is empty
public object Last
Gets or sets the last (tail) value
internal Naanou.Common.Deque.DLNode Tail
Method Detail |
---|
public Naanou.Common.Deque.DequeEnumerator GetBackwardEnumerator()
public Naanou.Common.Deque.DequeEnumerator GetForwardEnumerator()
Gets enumerator
Returns:
private System.Collections.IEnumerator IEnumerable.GetEnumerator()
Gets enumerator (from tail to head)
private void InsertFirst(object elem)
private void InsertLast(object elem)
public object RemoveFirst()
public object RemoveLast()
|
.NET Framework | |||||||||
PREV TYPE NEXT TYPE | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONST | PROP | METHOD | OP | EVENT | DETAIL: FIELD | CONST | PROP | METHOD | OP | EVENT |